home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
oolregex
/
regexdlg.h
< prev
next >
Wrap
C/C++ Source or Header
|
1995-12-07
|
1KB
|
48 lines
// RegExdlg.h : header file
//
#include <afxcmn.h>
/////////////////////////////////////////////////////////////////////////////
// CRegExpTestDlg dialog
class CRegExpTestDlg : public CDialog
{
// Construction
public:
void DisplayList();
CRegExpTestDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CRegExpTestDlg)
enum { IDD = IDD_REGEXPTEST_DIALOG };
CListCtrl m_listTestInfo;
CString m_string;
CString m_regexp;
CString m_res1;
CString m_res2;
CString m_res3;
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CRegExpTestDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
HICON m_hIcon;
// Generated message map functions
//{{AFX_MSG(CRegExpTestDlg)
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnDestroy();
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
afx_msg void OnButtonMatch();
afx_msg void OnButtonTest();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};